home *** CD-ROM | disk | FTP | other *** search
/ SGI Developer Toolbox 6.1 / SGI Developer Toolbox 6.1 - Disc 4.iso / public / ghostscript / Fontmap < prev    next >
Text File  |  1994-08-01  |  11KB  |  325 lines

  1. %    Copyright (C) 1990, 1992, 1993 Aladdin Enterprises.  All rights reserved.
  2. %
  3. % This file is part of Ghostscript.
  4. %
  5. % Ghostscript is distributed in the hope that it will be useful, but
  6. % WITHOUT ANY WARRANTY.  No author or distributor accepts responsibility
  7. % to anyone for the consequences of using it or for whether it serves any
  8. % particular purpose or works at all, unless he says so in writing.  Refer
  9. % to the Ghostscript General Public License for full details.
  10. %
  11. % Everyone is granted permission to copy, modify and redistribute
  12. % Ghostscript, but only under the conditions described in the Ghostscript
  13. % General Public License.  A copy of this license is supposed to have been
  14. % given to you along with Ghostscript so you can know your rights and
  15. % responsibilities.  It should be in a file named COPYING.  Among other
  16. % things, the copyright notice and this notice must be preserved on all
  17. % copies.
  18.  
  19. % ----------------------------------------------------------------
  20.  
  21. % This file is a catalog of fonts known to Ghostscript.  Any font
  22. % that is to be loaded automatically when named must be in this catalog.
  23.  
  24. % Each font has an entry consisting of three items:
  25. %
  26. %    - The name by which the font is known inside Ghostscript
  27. %    (a Ghostscript name preceded by a `/', or a string enclosed
  28. %    in parentheses).  This is used to find the file from which
  29. %    a font of a given name should be loaded.
  30. %
  31. %    - Information depending on whether this is a real font or a
  32. %    font alias:
  33. %
  34. %        - For real fonts, the name of the Ghostscript font
  35. %        file (a Ghostscript string, enclosed in parentheses).
  36. %        The filename should include the extension, which (by
  37. %        convention) is `.gsf'.  `.pfa' and `.pfb' files are
  38. %        also usable as fonts for Ghostscript.
  39. %
  40. %        - For font aliases, the name of the font which should
  41. %        be used when this one is requested, preceded by a
  42. %        `/'.  See the entry for Charter below for an example.
  43. %
  44. %    - A terminating semicolon.
  45.  
  46. % Because of limitations in the MS-DOS environment, Ghostscript font
  47. % file names must be no more than 8 characters long, must consist only
  48. % of LOWER CASE letters, digits, and underscores, and must start with a
  49. % letter.  Font names, on the other hand, need only obey the syntax of
  50. % names in the Ghostscript language, which is much more liberal.
  51.  
  52. % Most of the Ghostscript fonts were created automatically from freely
  53. % available bitmaps.  There is a makefile (fonts.mak) that specifies
  54. % how this conversion was done.  fonts.mak also specifies, for each such
  55. % converted font, its uniqueID (an integer used to identify distinct fonts
  56. % within the Ghostscript font machinery), and its encoding (the mapping
  57. % from character codes in a string to character names).  For more detailed
  58. % information, read fonts.mak.
  59.  
  60. % The following table is actually a Ghostscript data structure.
  61. % If you add new entries, be sure to copy the punctuation accurately.
  62.  
  63. % A homemade font.
  64.  
  65. /Ugly                (uglyr.gsf)    ;
  66.  
  67.  
  68. % Fonts converted from bitmaps.
  69.  
  70. /AvantGarde-Book        (pagk.gsf)    ;
  71. /AvantGarde-BookOblique        (pagko.gsf)    ;
  72. /AvantGarde-Demi        (pagd.gsf)    ;
  73. /AvantGarde-DemiOblique        (pagdo.gsf)    ;
  74.  
  75. /Bookman-Light            (pbkl.gsf)    ;
  76. /Bookman-LightItalic        (pbkli.gsf)    ;
  77. /Bookman-Demi            (pbkd.gsf)    ;
  78. /Bookman-DemiItalic        (pbkdi.gsf)    ;
  79.  
  80. % The converted Bitstream fonts have been replaced by Type 1 fonts
  81. % contributed to the X11R5 distribution; see below.
  82. %/Charter-Roman            (bchr.gsf)    ;
  83. %/Charter-Italic        (bchri.gsf)    ;
  84. %/Charter-Bold            (bchb.gsf)    ;
  85. %/Charter-BoldItalic        (bchbi.gsf)    ;
  86.  
  87. % The converted Courier fonts have been replaced by Type 1 fonts
  88. % contributed to the X11R5 distribution; see below.
  89. %/Courier            (pcrr.gsf)    ;
  90. %/Courier-Oblique        (pcrro.gsf)    ;
  91. %/Courier-Bold            (pcrb.gsf)    ;
  92. %/Courier-BoldOblique        (pcrbo.gsf)    ;
  93. % Quite a few PostScript files reference Courier-Oblique rather than
  94. % Courier-Italic, so we need some aliases here.
  95. /Courier-Oblique        /Courier-Italic        ;
  96. /Courier-BoldOblique        /Courier-BoldItalic    ;
  97.  
  98. /Helvetica            (phvr.gsf)    ;
  99. /Helvetica-Oblique        (phvro.gsf)    ;
  100. /Helvetica-Bold            (phvb.gsf)    ;
  101. /Helvetica-BoldOblique        (phvbo.gsf)    ;
  102. % We don't have a full set of Helvetica-Narrow....
  103. /Helvetica-Narrow        (phvrrn.gsf)    ;
  104.     /Helvetica-Narrow-Bold        /Helvetica-Narrow    ;
  105.  
  106. /NewCenturySchlbk-Roman        (pncr.gsf)    ;
  107. /NewCenturySchlbk-Italic    (pncri.gsf)    ;
  108. /NewCenturySchlbk-Bold        (pncb.gsf)    ;
  109. /NewCenturySchlbk-BoldItalic    (pncbi.gsf)    ;
  110.  
  111. /Palatino-Roman            (pplr.gsf)    ;
  112. /Palatino-Italic        (pplri.gsf)    ;
  113. /Palatino-Bold            (pplb.gsf)    ;
  114. /Palatino-BoldItalic        (pplbi.gsf)    ;
  115.  
  116. /Symbol                (psyr.gsf)    ;
  117.  
  118. /Times-Roman            (ptmr.gsf)    ;
  119. /Times-Italic            (ptmri.gsf)    ;
  120. /Times-Bold            (ptmb.gsf)    ;
  121. /Times-BoldItalic        (ptmbi.gsf)    ;
  122.  
  123. /ZapfChancery            (zcr.gsf)    ;
  124. /ZapfChancery-Oblique        (zcro.gsf)    ;
  125. /ZapfChancery-Bold        (zcb.gsf)    ;
  126. % Some PostScript files reference the MediumItalic font....
  127. /ZapfChancery-MediumItalic    /ZapfChancery-Oblique    ;
  128.  
  129. /ZapfDingbats            (pzdr.gsf)    ;
  130.  
  131.  
  132. %
  133. % Type 1 fonts contributed to the X11R5 distribution.
  134. %
  135.  
  136. % The following notice accompanied the Charter fonts.
  137. %
  138. % (c) Copyright 1989-1992, Bitstream Inc., Cambridge, MA.
  139. %
  140. % You are hereby granted permission under all Bitstream propriety rights
  141. % to use, copy, modify, sublicense, sell, and redistribute the 4 Bitstream
  142. % Charter (r) Type 1 outline fonts and the 4 Courier Type 1 outline fonts
  143. % for any purpose and without restriction; provided, that this notice is
  144. % left intact on all copies of such fonts and that Bitstream's trademark
  145. % is acknowledged as shown below on all unmodified copies of the 4 Charter
  146. % Type 1 fonts.
  147. %
  148. % BITSTREAM CHARTER is a registered trademark of Bitstream Inc.
  149.  
  150. % The Bitstream Charter fonts have different names....
  151. /CharterBT-Roman        (bchr.gsf)    ;
  152. /CharterBT-Italic        (bchri.gsf)    ;
  153. /CharterBT-Bold            (bchb.gsf)    ;
  154. /CharterBT-BoldItalic        (bchbi.gsf)    ;
  155. % ... so we provide aliases.
  156. /Charter-Roman            /CharterBT-Roman    ;
  157. /Charter-Italic            /CharterBT-Italic    ;
  158. /Charter-Bold            /CharterBT-Bold        ;
  159. /Charter-BoldItalic        /CharterBT-BoldItalic    ;
  160.  
  161. % The following notice accompanied the Courier font:
  162. %
  163. %   IBM Courier - Copyright (c) IBM Corporation 1990, 1991
  164. %
  165. %   You are hereby granted permission under the terms of the IBM/MIT X
  166. %   Consortium Courier Typefont agreement to execute, reproduce,
  167. %   distribute, display, market, sell and otherwise transfer copies of
  168. %   the IBM Courier font to third parties.
  169. %
  170. %   The font is provided "AS IS" without charge.  NO WARRANTIES OR
  171. %   INDEMNIFICATION ARE GIVEN, WHETHER EXPRESS OR IMPLIED INCLUDING, BUT
  172. %   LIMITED TO THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  173. %   A PARTICULAR PURPOSE.
  174.  
  175. /Courier        (ncrr.gsf)    ;
  176. /Courier-Italic        (ncrri.gsf)    ;
  177. /Courier-Bold        (ncrb.gsf)    ;
  178. /Courier-BoldItalic    (ncrbi.gsf)    ;
  179.  
  180. % The following notice accompanied the Utopia font:
  181. %
  182. %   Permission to use, reproduce, display and distribute the listed
  183. %   typefaces is hereby granted, provided that the Adobe Copyright notice
  184. %   appears in all whole and partial copies of the software and that the
  185. %   following trademark symbol and attribution appear in all unmodified
  186. %   copies of the software:
  187. %
  188. %           Copyright (c) 1989 Adobe Systems Incorporated
  189. %           Utopia (R)
  190. %           Utopia is a registered trademark of Adobe Systems Incorporated
  191. %
  192. %   The Adobe typefaces (Type 1 font program, bitmaps and Adobe Font
  193. %   Metric files) donated are:
  194. %
  195. %           Utopia Regular
  196. %           Utopia Italic
  197. %           Utopia Bold
  198. %           Utopia Bold Italic
  199.  
  200. /Utopia-Regular        (putr.gsf)    ;
  201. /Utopia-Italic        (putri.gsf)    ;
  202. /Utopia-Bold        (putb.gsf)    ;
  203. /Utopia-BoldItalic    (putbi.gsf)    ;
  204.  
  205. %
  206. % Fonts contributed by URW GmbH for distribution under the GNU License.
  207. % The following notice accompanied these fonts:
  208. %
  209. % N019003L Nimbus Sans L Regular PostScript Type 1 Font Program
  210. % N021003L Nimbus Roman No9 L Regular PostScript Type 1 Font Program
  211. % U004006T URW Grotesk 2031 Bold PostScript Type 1 Font Program
  212. % U003043T URW Antiqua 2051 Regular Condensed PostScript Type 1 Font Program
  213. %
  214. % Copyright (c) 1992 URW GmbH, Hamburg, Germany
  215. %
  216. % This program is free software; you can redistribute it and/or modify
  217. % it under the terms of the GNU General Public License as published by
  218. % the Free Software Foundation; either version 2 of the License, or
  219. % (at your option) later version.
  220. %
  221. % This program is distributed in the hope that it will be useful,
  222. % but WITHOUT ANY WARRANTY; wihtout even the implied warranty of
  223. % MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  224. % See the GNU General Public License for more details.
  225. %
  226. % You should have received a copy of the GNU General Public License
  227. % along with this program; if not, write to the Free Software
  228. % Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  229. %
  230. % Address:
  231. % URW GmbH
  232. % PC Support
  233. % Harksheider Strasse 102
  234. % 2000 Hamburg 65
  235. % Germany
  236. % Phone: +49 40 60 60 50       (Reception)
  237. % Phone: +49 40 60 60 52 30   (PC Support)
  238. % Fax    : +49 40 60 60 52 52
  239. %
  240.  
  241. /NimbusSansL-Regular        (n019003l.gsf)    ;
  242. /NimbusRomanNo9L-Regular    (n021003l.gsf)    ;
  243. /URWAntiquaT-RegularCondensed    (u003043t.gsf)    ;
  244. /URWGroteskT-Bold        (u004006t.gsf)    ;
  245.  
  246. %
  247. % Shareware fonts.  These have no copyright, and are of questionable quality.
  248. % They have their own UniqueID numbering scheme, which bears no relation
  249. % to that of the other Ghostscript fonts.
  250.  
  251. /Cyrillic        (cyr.gsf)    ;
  252. /Cyrillic-Italic    (cyri.gsf)    ;
  253.  
  254. %
  255. % Fonts converted from Hershey outlines.  These are constructed and
  256. % maintained manually.
  257. %
  258. % The UniqueID's and filenames are constructed differently for
  259. % these than for the ones above, because of the strange way that the Hershey
  260. % fonts were constructed.  The scheme for these looks like:
  261. %
  262. % 42TTXY0
  263. %
  264. % TT = typeface, X = ``class'', Y = variation
  265. %
  266. % The typeface numbers are given above.
  267. %
  268. % class:
  269. % 0 = normal            = r
  270. % 1 = simplex            = s
  271. % 2 = complex            = c
  272. % 3 = triplex            = t
  273. %
  274. % variation:
  275. % 0 = normal            (omitted)
  276. % 1 = oblique            = o
  277. % 2 = italic            = i
  278. % 3 = bold            = b
  279. % 4 = bold oblique        = bo
  280. % 5 = bold italic        = bi
  281. %
  282.  
  283. /Hershey-Gothic-English        (hrge_r.gsf)    ;
  284. /Hershey-Gothic-English-Bold    (hrge_rb.gsf)    ;
  285. /Hershey-Gothic-English-Oblique    (hrge_ro.gsf)    ;
  286.  
  287. /Hershey-Gothic-German        (hrgr_r.gsf)    ;
  288. /Hershey-Gothic-German-Bold    (hrgr_rb.gsf)    ;
  289. /Hershey-Gothic-German-Oblique    (hrgr_ro.gsf)    ;
  290.  
  291. /Hershey-Gothic-Italian        (hrit_r.gsf)    ; 
  292. /Hershey-Gothic-Italian-Bold    (hrit_rb.gsf)    ;
  293. /Hershey-Gothic-Italian-Oblique    (hrit_ro.gsf)    ;
  294.  
  295. /Hershey-Greek-Complex        (hrgk_c.gsf)    ;
  296. /Hershey-Greek-Simplex        (hrgk_s.gsf)    ;
  297.  
  298. /Hershey-Plain            (hrpl_r.gsf)    ;
  299. /Hershey-Plain-Bold        (hrpl_rb.gsf)    ;
  300. /Hershey-Plain-Oblique        (hrpl_ro.gsf)    ;
  301. /Hershey-Plain-Simplex        (hrpl_s.gsf)    ;
  302. /Hershey-Plain-Simplex-Bold    (hrpl_sb.gsf)    ;
  303. /Hershey-Plain-Simplex-Bold-Oblique (hrpl_sbo.gsf) ;
  304. /Hershey-Plain-Simplex-Oblique    (hrpl_so.gsf)    ;
  305. /Hershey-Plain-Triplex        (hrpl_t.gsf)    ;
  306. /Hershey-Plain-Triplex-Italic    (hrpl_ti.gsf)    ;
  307. /Hershey-Plain-Triplex-Bold    (hrpl_tb.gsf)    ;
  308. /Hershey-Plain-Triplex-Bold-Italic (hrpl_tbi.gsf) ;
  309.  
  310. /Hershey-Script-Complex        (hrsc_c.gsf)    ;
  311. /Hershey-Script-Complex-Bold    (hrsc_cb.gsf)    ;
  312. /Hershey-Script-Complex-Oblique    (hrsc_co.gsf)    ;
  313. /Hershey-Script-Simplex        (hrsc_s.gsf)    ;
  314. /Hershey-Script-Simplex-Bold    (hrsc_sb.gsf)    ;
  315. /Hershey-Script-Simplex-Oblique    (hrsc_so.gsf)    ;
  316.  
  317. % This font, and only this font among the Hershey fonts, uses
  318. % the SymbolEncoding.
  319. /Hershey-Symbol            (hrsy_r.gsf)    ;
  320.